home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 7
/
Amiga Format AFCD07 (Dec 1996, Issue 91).iso
/
serious
/
shareware
/
programming
/
ace_basic
/
ace24.lha
/
include
/
ace
/
limits.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-09-11
|
410 b
|
17 lines
#ifndef LIMITS_H
#define LIMITS_H 1
/* maxima & minima */
#define MaxInt 2147483647
#define MinInt -2147483648
#define MaxShort 32767
#define MinShort -32767 /* NOT -32768, due to the way ACE
** classifies integers during
** compilation.
*/
#define MaxReal 9.22337177E+18
#define MinReal -9.22337177E+18
#define MAXSTRINGLEN 1024&
#endif